home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / programy / FEBE (Firefox Environment Backup Extension) 5.0 / febe-5.0-fx.xpi / chrome / febe.jar / content / febeChmod.xul < prev    next >
Extensible Markup Language  |  2007-05-20  |  2KB  |  44 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="chrome://febe/skin/febe.css" type="text/css"?>
  3. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  4.  
  5. <!DOCTYPE overlay SYSTEM "chrome://febe/locale/febe.dtd">
  6.  
  7. <dialog xmlns:html="http://www.w3.org/1999/xhtml"     
  8.                 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  9.                 id="febeChmodWindow"
  10.                 title="&febe.chmod.title;"
  11.                 autostretch="always"
  12.                 width="400"
  13.                 onload="sizeToContent(); febeSetExDir(); "
  14.                 ondialogcancel="window.close();"
  15.                 ondialogaccept="febeChmod(); window.close();">
  16.  
  17.     <script type="application/x-javascript" src="chrome://febe/content/febeCommon.js"/>    
  18.     <script type="application/x-javascript" src="chrome://febe/content/febe.js"/>    
  19.  
  20.     <stringbundleset id="febestringbundleset"> 
  21.         <stringbundle id="febe-strings" src="chrome://febe/locale/febe.properties"/>
  22.     </stringbundleset>
  23.  
  24.     <groupbox>
  25.         <vbox flex="1">
  26.             <hbox flex="1">
  27.                 <label id="febeZipLabel" value="&febe.chmod.zip;"/>
  28.                 <label id="febeZipValue" value="&febe.unknown;"/>
  29.             </hbox>
  30.             <hbox flex="1">
  31.                 <label id="febeUnzipLabel" value="&febe.chmod.unzip;"/>
  32.                 <label id="febeUnzipValue" value="&febe.unknown;"/>
  33.             </hbox>
  34.             <description flex="1">
  35.                 <html:br></html:br>&febe.chmod.text;<html:br></html:br><html:br></html:br>
  36.             </description>
  37.         </vbox>
  38.         <groupbox>
  39.             <caption label="&febe.chmod.caption;"/>
  40.             <textbox id="febeExtDirZip" cols="50" rows="1" wrap="off" class="plain" readonly="yes" flex="1" value="&febe.unknown;"/>
  41.         </groupbox>
  42.     </groupbox>
  43. </dialog>
  44.